home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsdps1.c < prev    next >
C/C++ Source or Header  |  1997-04-08  |  7KB  |  232 lines

  1. /* Copyright (C) 1991, 1992, 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsdps1.c */
  20. /* Display PostScript graphics additions for Ghostscript library */
  21. #include "math_.h"
  22. #include "gx.h"
  23. #include "gserrors.h"
  24. #include "gsmatrix.h"            /* for gscoord.h */
  25. #include "gscoord.h"
  26. #include "gspaint.h"
  27. #include "gxdevice.h"
  28. #include "gxfixed.h"
  29. #include "gxmatrix.h"
  30. #include "gspath.h"
  31. #include "gspath2.h"            /* defines interface */
  32. #include "gzpath.h"
  33. #include "gzcpath.h"
  34. #include "gzstate.h"
  35.  
  36. /*
  37.  * Define how much rounding slop setbbox should leave,
  38.  * in device coordinates.  Because of rounding in transforming
  39.  * path coordinates to fixed point, the minimum realistic value is:
  40.  *
  41.  *    #define box_rounding_slop_fixed (fixed_epsilon)
  42.  *
  43.  * But even this isn't enough to compensate for cumulative rounding error
  44.  * in rmoveto or rcurveto.  Instead, we somewhat arbitrarily use:
  45.  */
  46. #define box_rounding_slop_fixed (fixed_epsilon * 3)
  47.  
  48. /* ------ Graphics state ------ */
  49.  
  50. /* Set the bounding box for the current path. */
  51. int
  52. gs_setbbox(gs_state *pgs, floatp llx, floatp lly, floatp urx, floatp ury)
  53. {    gs_rect ubox, dbox;
  54.     gs_fixed_rect obox, bbox;
  55.     gx_path *ppath = pgs->path;
  56.     int code;
  57.  
  58.     if ( llx > urx || lly > ury )
  59.       return_error(gs_error_rangecheck);
  60.     /* Transform box to device coordinates. */
  61.     ubox.p.x = llx;
  62.     ubox.p.y = lly;
  63.     ubox.q.x = urx;
  64.     ubox.q.y = ury;
  65.     if ( (code = gs_bbox_transform(&ubox, &ctm_only(pgs), &dbox)) < 0 )
  66.       return code;
  67.     /* Round the corners in opposite directions. */
  68.     /* Because we can't predict the magnitude of the dbox values, */
  69.     /* we add/subtract the slop after fixing. */
  70.     if ( dbox.p.x < fixed2float(min_fixed + box_rounding_slop_fixed) ||
  71.          dbox.p.y < fixed2float(min_fixed + box_rounding_slop_fixed) ||
  72.          dbox.q.x >= fixed2float(max_fixed - box_rounding_slop_fixed + fixed_epsilon) ||
  73.          dbox.q.y >= fixed2float(max_fixed - box_rounding_slop_fixed + fixed_epsilon)
  74.        )
  75.       return_error(gs_error_limitcheck);
  76.     bbox.p.x =
  77.       (fixed)floor(dbox.p.x * fixed_scale) - box_rounding_slop_fixed;
  78.     bbox.p.y =
  79.       (fixed)floor(dbox.p.y * fixed_scale) - box_rounding_slop_fixed;
  80.     bbox.q.x =
  81.       (fixed)ceil(dbox.q.x * fixed_scale) + box_rounding_slop_fixed;
  82.     bbox.q.y =
  83.       (fixed)ceil(dbox.q.y * fixed_scale) + box_rounding_slop_fixed;
  84.     if ( gx_path_bbox(ppath, &obox) >= 0 )
  85.       {    /* Take the union of the bboxes. */
  86.         ppath->bbox.p.x = min(obox.p.x, bbox.p.x);
  87.         ppath->bbox.p.y = min(obox.p.y, bbox.p.y);
  88.         ppath->bbox.q.x = max(obox.q.x, bbox.q.x);
  89.         ppath->bbox.q.y = max(obox.q.y, bbox.q.y);
  90.       }
  91.     else        /* empty path */
  92.       {    /* Just set the bbox. */
  93.         ppath->bbox = bbox;
  94.       }
  95.     ppath->bbox_set = 1;
  96.     return 0;
  97. }
  98.  
  99. /* ------ Rectangles ------ */
  100.  
  101. /* Append a list of rectangles to a path. */
  102. int
  103. gs_rectappend(gs_state *pgs, const gs_rect *pr, uint count)
  104. {    for ( ; count != 0; count--, pr++ )
  105.        {    floatp px = pr->p.x, py = pr->p.y, qx = pr->q.x, qy = pr->q.y;
  106.         int code;
  107.         /* Ensure counter-clockwise drawing. */
  108.         if ( (qx >= px) != (qy >= py) )
  109.             qx = px, px = pr->q.x;    /* swap x values */
  110.         if ( (code = gs_moveto(pgs, px, py)) < 0 ||
  111.              (code = gs_lineto(pgs, qx, py)) < 0 ||
  112.              (code = gs_lineto(pgs, qx, qy)) < 0 ||
  113.              (code = gs_lineto(pgs, px, qy)) < 0 ||
  114.              (code = gs_closepath(pgs)) < 0
  115.            )
  116.             return code;
  117.        }
  118.     return 0;
  119. }
  120.  
  121. /* Clip to a list of rectangles. */
  122. int
  123. gs_rectclip(gs_state *pgs, const gs_rect *pr, uint count)
  124. {    int code;
  125.     gx_path old_path;
  126.     old_path = *pgs->path;
  127.     gx_path_reset(pgs->path);
  128.     if ( (code = gs_rectappend(pgs, pr, count)) < 0 ||
  129.          (code = gs_clip(pgs)) < 0
  130.        )
  131.       {    gx_path_release(pgs->path);
  132.         *pgs->path = old_path;
  133.         return code;
  134.       }
  135.     gs_newpath(pgs);
  136.     gx_path_release(&old_path);
  137.     return 0;
  138. }
  139.  
  140. /* Fill a list of rectangles. */
  141. /* We take the trouble to do this efficiently in the simple cases. */
  142. int
  143. gs_rectfill(gs_state *pgs, const gs_rect *pr, uint count)
  144. {    const gs_rect *rlist = pr;
  145.     uint rcount = count;
  146.     int code;
  147.  
  148.     gx_set_dev_color(pgs);
  149.     if ( (is_fzero2(pgs->ctm.xy, pgs->ctm.yx) ||
  150.           is_fzero2(pgs->ctm.xx, pgs->ctm.yy)) &&
  151.          clip_list_is_rectangle(&pgs->clip_path->list) &&
  152.          gs_state_color_load(pgs) >= 0 &&
  153.          (*dev_proc(pgs->device, get_alpha_bits))(pgs->device, go_graphics)
  154.            <= 1
  155.        )
  156.       { uint i;
  157.         gs_fixed_rect clip_rect;
  158.  
  159.         gx_cpath_inner_box(pgs->clip_path, &clip_rect);
  160.         for ( i = 0; i < count; ++i )
  161.           { gs_fixed_point p, q;
  162.             gs_fixed_rect draw_rect;
  163.         int x, y, w, h;
  164.  
  165.         if ( gs_point_transform2fixed(&pgs->ctm, pr[i].p.x, pr[i].p.y, &p) < 0 ||
  166.              gs_point_transform2fixed(&pgs->ctm, pr[i].q.x, pr[i].q.y, &q) < 0
  167.            )
  168.           { /* Switch to the slow algorithm. */
  169.             goto slow;
  170.           }
  171.         draw_rect.p.x = min(p.x, q.x) - pgs->fill_adjust.x;
  172.         draw_rect.p.y = min(p.y, q.y) - pgs->fill_adjust.y;
  173.         draw_rect.q.x = max(p.x, q.x) + pgs->fill_adjust.x;
  174.         draw_rect.q.y = max(p.y, q.y) + pgs->fill_adjust.y;
  175.         rect_intersect(draw_rect, clip_rect);
  176.         x = fixed2int_pixround(draw_rect.p.x);
  177.         y = fixed2int_pixround(draw_rect.p.y);
  178.         w = fixed2int_pixround(draw_rect.q.x) - x;
  179.         h = fixed2int_pixround(draw_rect.q.y) - y;
  180.         if ( w > 0 && h > 0 )
  181.           { if ( gx_fill_rectangle(x, y, w, h, pgs->dev_color, pgs) < 0 )
  182.               goto slow;
  183.           }
  184.           }
  185.         return 0;
  186. slow:        rlist = pr + i;
  187.         rcount = count - i;
  188.       }
  189.     { bool do_save = !gx_path_is_null(pgs->path);
  190.  
  191.       if ( do_save )
  192.         { if ( (code = gs_gsave(pgs)) < 0 )
  193.             return code;
  194.           gs_newpath(pgs);
  195.         }
  196.       if ( (code = gs_rectappend(pgs, rlist, rcount)) < 0 ||
  197.            (code = gs_fill(pgs)) < 0
  198.          )
  199.         DO_NOTHING;
  200.       if ( do_save )
  201.         gs_grestore(pgs);
  202.       else if ( code < 0 )
  203.         gs_newpath(pgs);
  204.     }
  205.     return code;
  206. }
  207.  
  208. /* Stroke a list of rectangles. */
  209. /* (We could do this a lot more efficiently.) */
  210. int
  211. gs_rectstroke(gs_state *pgs, const gs_rect *pr, uint count,
  212.   const gs_matrix *pmat)
  213. {    bool do_save = pmat != NULL || !gx_path_is_null(pgs->path);
  214.     int code;
  215.  
  216.     if ( do_save )
  217.       { if ( (code = gs_gsave(pgs)) < 0 )
  218.           return code;
  219.         gs_newpath(pgs);
  220.       }
  221.     if ( (code = gs_rectappend(pgs, pr, count)) < 0 ||
  222.          (pmat != NULL && (code = gs_concat(pgs, pmat)) < 0) ||
  223.          (code = gs_stroke(pgs)) < 0
  224.        )
  225.       DO_NOTHING;
  226.     if ( do_save )
  227.       gs_grestore(pgs);
  228.     else if ( code < 0 )
  229.       gs_newpath(pgs);
  230.     return code;
  231. }
  232.